getContext

Posted on 2023-02-10 by

henrikvilhelmberglund

Context is a way to pass data from a component to all of its children .

Here we have a component with many children where we just pass a color as a prop.
Parent A
GrandChild A
GrandChild B: red
Child2: >> red
<script>
	import Parent from "./Parent.svelte";
</script>

<Parent />

It is a bit inefficient though because we need to pass the props in every child component to its children.

Instead we can use getContext and setContext .

Parent A
GrandChild A
GrandChild B: red
Child2: >> red
<script>
	import Parentv2 from "./Parentv2.svelte";
</script>

<Parentv2 />

We could also create a file context.js where we export a key as an object export const key = { that we then import in the files.

This wil make sure that we can't have collisions with our contexts (rather than using strings).

Now that we're using context we can do things like this:

Here I added a Parent2 component that sets the color using context to blue. Its child, GrandChildAv2, will use that context to get the new color.
Parent A
GrandChild A
GrandChild B: red
Child2: >> red
GrandChild A
<script>
	import Parentv2 from "./Parentv2.svelte";
	import Parent2 from "./Parent2.svelte";
</script>

<Parentv2 />
<Parent2/>

It is important to note that you could also override the context within a child, which will then give the new context to its children .

If you want to retain the parent context for that child component but override in the children, the setContext() needs to be below getContext() in that file.

Also, you can only set and get context in the top level (during component initialization).